home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / genextract.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  8KB  |  351 lines

  1. /* Generate code from machine description to extract operands from insn as rtl.
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4.    $Id: genextract.c,v 1.2 90/06/04 11:46:11 jeff Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. #include <stdio.h>
  24. #include "config.h"
  25. #include "rtl.h"
  26. #include "obstack.h"
  27.  
  28. struct obstack obstack;
  29. struct obstack *rtl_obstack = &obstack;
  30.  
  31. #define obstack_chunk_alloc xmalloc
  32. #define obstack_chunk_free free
  33. extern int xmalloc ();
  34. extern void free ();
  35.  
  36. /* Number instruction patterns handled, starting at 0 for first one.  */
  37.  
  38. int insn_code_number;
  39.  
  40. /* Number the occurrences of MATCH_DUP in each instruction,
  41.    starting at 0 for the first occurrence.  */
  42.  
  43. int dup_count;
  44.  
  45. /* While tree-walking an instruction pattern, we keep a chain
  46.    of these `struct link's to record how to get down to the
  47.    current position.  In each one, POS is the operand number,
  48.    and if the operand is a vector VEC is the element number.
  49.    VEC is -1 if the operand is not a vector.  */
  50.  
  51. struct link
  52. {
  53.   struct link *next;
  54.   int pos;
  55.   int vecelt;
  56. };
  57.  
  58. void walk_rtx ();
  59. void print_path ();
  60. void fatal ();
  61. void fancy_abort ();
  62.  
  63. void
  64. gen_insn (insn)
  65.      rtx insn;
  66. {
  67.   register int i;
  68.  
  69.   dup_count = 0;
  70.  
  71.   /* Output the function name and argument declaration.  */
  72.   /* It would be cleaner to make `void' the return type
  73.      but 4.2 vax compiler doesn't accept that in the array
  74.      that these functions are supposed to go in.  */
  75.   printf ("VOID\nextract_%d (insn)\n     rtx insn;\n", insn_code_number);
  76.   printf ("{\n");
  77.  
  78.   /* Walk the insn's pattern, remembering at all times the path
  79.      down to the walking point.  */
  80.  
  81.   if (XVECLEN (insn, 1) == 1)
  82.     walk_rtx (XVECEXP (insn, 1, 0), 0);
  83.   else
  84.     for (i = XVECLEN (insn, 1) - 1; i >= 0; i--)
  85.       {
  86.     struct link link;
  87.     link.next = 0;
  88.     link.pos = 0;
  89.     link.vecelt = i;
  90.     walk_rtx (XVECEXP (insn, 1, i), &link);
  91.       }
  92.   printf ("}\n\n");
  93. }
  94.  
  95. /* Like gen_insn but handles `define_peephole'.  */
  96.  
  97. void
  98. gen_peephole (peep)
  99.      rtx peep;
  100. {
  101.   /* Output the function name and argument declaration.  */
  102.   printf ("VOID\nextract_%d (insn)\n     rtx insn;\n", insn_code_number);
  103.   printf ("{\n");
  104.   /* The vector in the insn says how many operands it has.
  105.      And all it contains are operands.  In fact, the vector was
  106.      created just for the sake of this function.  */
  107.   printf ("\
  108.   bcopy (&XVECEXP (insn, 0, 0), recog_operand,\
  109.          sizeof ( rtx ) * XVECLEN (insn, 0));\n");
  110.   printf ("}\n\n");
  111. }
  112.  
  113. void
  114. walk_rtx (x, path)
  115.      rtx x;
  116.      struct link *path;
  117. {
  118.   register RTX_CODE code;
  119.   register int i;
  120.   register int len;
  121.   register char *fmt;
  122.   struct link link;
  123.  
  124.   if (x == 0)
  125.     return;
  126.  
  127.   code = GET_CODE (x);
  128.  
  129.   switch (code)
  130.     {
  131.     case PC:
  132.     case CC0:
  133.     case CONST_INT:
  134.     case SYMBOL_REF:
  135.       return;
  136.  
  137.     case MATCH_OPERAND:
  138.       printf ("  recog_operand[%d] = *(recog_operand_loc[%d]\n    = &",
  139.           XINT (x, 0), XINT (x, 0));
  140.       print_path (path);
  141.       printf (");\n");
  142.       break;
  143.  
  144.     case MATCH_DUP:
  145.       printf ("  recog_dup_loc[%d] = &", dup_count);
  146.       print_path (path);
  147.       printf (";\n");
  148.       printf ("  recog_dup_num[%d] = %d;\n", dup_count, XINT (x, 0));
  149.       dup_count++;
  150.       break;
  151.  
  152.     case MATCH_OPERATOR:
  153.       printf ("  recog_operand[%d] = *(recog_operand_loc[%d]\n    = &",
  154.           XINT (x, 0), XINT (x, 0));
  155.       print_path (path);
  156.       printf (");\n");
  157.       link.next = path;
  158.       link.vecelt = -1;
  159.       for (i = XVECLEN (x, 2) - 1; i >= 0; i--)
  160.     {
  161.       link.pos = i;
  162.       walk_rtx (XVECEXP (x, 2, i), &link);
  163.     }
  164.       return;
  165.  
  166.     case ADDRESS:
  167.       walk_rtx (XEXP (x, 0), path);
  168.       return;
  169.     }
  170.  
  171.   link.next = path;
  172.   link.vecelt = -1;
  173.   fmt = GET_RTX_FORMAT (code);
  174.   len = GET_RTX_LENGTH (code);
  175.   for (i = 0; i < len; i++)
  176.     {
  177.       link.pos = i;
  178.       if (fmt[i] == 'e' || fmt[i] == 'u')
  179.     {
  180.       walk_rtx (XEXP (x, i), &link);
  181.     }
  182.       else if (fmt[i] == 'E')
  183.     {
  184.       int j;
  185.       for (j = XVECLEN (x, i) - 1; j >= 0; j--)
  186.         {
  187.           link.vecelt = j;
  188.           walk_rtx (XVECEXP (x, i, j), &link);
  189.         }
  190.     }
  191.     }
  192. }
  193.  
  194. /* Given a PATH, representing a path down the instruction's
  195.    pattern from the root to a certain point, output code to
  196.    evaluate to the rtx at that point.  */
  197.  
  198. void
  199. print_path (path)
  200.      struct link *path;
  201. {
  202.   if (path == 0)
  203.     printf ("insn");
  204.   else if (path->vecelt >= 0)
  205.     {
  206.       printf ("XVECEXP (");
  207.       print_path (path->next);
  208.       printf (", %d, %d)", path->pos, path->vecelt);
  209.     }
  210.   else
  211.     {
  212.       printf ("XEXP (");
  213.       print_path (path->next);
  214.       printf (", %d)", path->pos);
  215.     }
  216. }
  217.  
  218. int
  219. xmalloc (size)
  220. {
  221.   register int val = malloc (size);
  222.  
  223.   if (val == 0)
  224.     fatal ("virtual memory exhausted");
  225.   return val;
  226. }
  227.  
  228. int
  229. xrealloc (ptr, size)
  230.      char *ptr;
  231.      int size;
  232. {
  233.   int result = realloc (ptr, size);
  234.   if (!result)
  235.     fatal ("virtual memory exhausted");
  236.   return result;
  237. }
  238.  
  239. void
  240. fatal (s, a1, a2)
  241.      char *s;
  242. {
  243.   fprintf (stderr, "genextract: ");
  244.   fprintf (stderr, s, a1, a2);
  245.   fprintf (stderr, "\n");
  246.   exit (FATAL_EXIT_CODE);
  247. }
  248.  
  249. /* More 'friendly' abort that prints the line and file.
  250.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  251.  
  252. void
  253. fancy_abort ()
  254. {
  255.   fatal ("Internal gcc abort.");
  256. }
  257.  
  258. int
  259. main (argc, argv)
  260.      int argc;
  261.      char **argv;
  262. {
  263.   rtx desc;
  264.   FILE *infile;
  265.   extern rtx read_rtx ();
  266.   register int c, i;
  267.  
  268.   obstack_init (rtl_obstack);
  269.  
  270.   if (argc <= 1)
  271.     fatal ("No input file name.");
  272.  
  273.   infile = fopen (argv[1], "r");
  274.   if (infile == 0)
  275.     {
  276.       perror (argv[1]);
  277.       exit (FATAL_EXIT_CODE);
  278.     }
  279.  
  280.   init_rtl ();
  281.  
  282.   /* Assign sequential codes to all entries in the machine description
  283.      in parallel with the tables in insn-output.c.  */
  284.  
  285.   insn_code_number = 0;
  286.  
  287.   printf ("/* Generated automatically by the program `genextract'\n\
  288. from the machine description file `md'.  */\n\n");
  289.  
  290.   printf ("#include \"config.h\"\n");
  291.   printf ("#include \"rtl.h\"\n\n");
  292.  
  293.   printf ("extern rtx recog_operand[];\n");
  294.   printf ("extern rtx *recog_operand_loc[];\n");
  295.   printf ("extern rtx *recog_dup_loc[];\n");
  296.   printf ("extern char recog_dup_num[];\n\n");
  297.  
  298.   /* The extractor functions really should return `void';
  299.      but old C compilers don't seem to be able to handle the array
  300.      definition if `void' is used.  So use `int' in non-ANSI C compilers.  */
  301.  
  302.   printf ("#ifdef __STDC__\n#define VOID void\n#else\n#define VOID int\n#endif\n\n");
  303.  
  304.   /* Read the machine description.  */
  305.  
  306.   while (1)
  307.     {
  308.       c = read_skip_spaces (infile);
  309.       if (c == EOF)
  310.     break;
  311.       ungetc (c, infile);
  312.  
  313.       desc = read_rtx (infile);
  314.       if (GET_CODE (desc) == DEFINE_INSN)
  315.     {
  316.       gen_insn (desc);
  317.       ++insn_code_number;
  318.     }
  319.       if (GET_CODE (desc) == DEFINE_PEEPHOLE)
  320.     {
  321.       gen_peephole (desc);
  322.       ++insn_code_number;
  323.     }
  324.       if (GET_CODE (desc) == DEFINE_EXPAND)
  325.     {
  326.       printf ("VOID extract_%d () {}\n\n", insn_code_number);
  327.       ++insn_code_number;
  328.     }
  329.     }
  330.  
  331.   printf ("VOID (*insn_extract_fn[]) () =\n{ ");
  332.   for (i = 0; i < insn_code_number; i++)
  333.     {
  334.       if (i % 4 != 0)
  335.     printf (", ");
  336.       else if (i != 0)
  337.     printf (",\n  ");
  338.       printf ("extract_%d", i);
  339.     }
  340.   printf ("\n};\n\n");
  341.  
  342.   printf ("void fatal_insn_not_found ();\n\n");
  343.   printf ("void\ninsn_extract (insn)\n");
  344.   printf ("     rtx insn;\n");
  345.   printf ("{\n  if (INSN_CODE (insn) == -1) fatal_insn_not_found (insn);\n");
  346.   printf ("  (*insn_extract_fn[INSN_CODE (insn)]) (PATTERN (insn));\n}\n");
  347.  
  348.   fflush (stdout);
  349.   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
  350. }
  351.